c95672787b291a38b1ac1ede1571e45835cc0fe1,integrationtests/as-lucene-directory/src/test/java/org/infinispan/test/integration/as/wildfly/InfinispanModuleMemberRegistrationIT.java,InfinispanModuleMemberRegistrationIT,createTestArchive,#,40
Before Change
.addAsResource(persistenceXml(), "META-INF/persistence.xml")
//This test is simply reusing the default configuration file, but we copy
//this configuration into the Archive to verify that resources can be loaded from it:
.addAsResource("user-provided-infinispan.xml", "user-provided-infinispan.xml")
.addAsWebInfResource(EmptyAsset.INSTANCE, "beans.xml");
addHibernateSearchManifestDependencies(webArchive);
return webArchive;
}
After Change
.addAsResource(persistenceXml(), "META-INF/persistence.xml")
//This test is simply reusing the default configuration file, but we copy
//this configuration into the Archive to verify that resources can be loaded from it:
.addAsResource("user-provided-infinispan.xml", "user-provided-infinispan.xml")
.addAsWebInfResource( "jboss-deployment-structure-excludejavassist.xml", "jboss-deployment-structure.xml" )
.addAsWebInfResource(EmptyAsset.INSTANCE, "beans.xml");
return webArchive;
}